(C) 1996 AROS - The Amiga Replacement OS
NAME
#include <string.h>
void * memcpy()
SYNOPSIS
void * dest
const void * src
size_t count
FUNCTION
Copy the contents of a part of memory to another. Both areas must not overlap. If they do, use memmove().
INPUTS
dest
The first byte of the destination area in memory
src
The first byte of the source area in memory
count
How many bytes to copy
RESULT
dest.
NOTES
EXAMPLE
BUGS
SEE ALSO
memmove()
INTERNALS
HISTORY
01.01.1997 ldp
Changed clib to proto
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
19.10.1996 aros
New functions: realloc(), memcpy() and calloc()